home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 127 / maccd 127.iso / software / urlwell.sit / URLwell / URLwell.app / Contents / Resources / UWItem.h < prev    next >
Encoding:
Text File  |  2005-02-23  |  429 b   |  26 lines

  1. //
  2. //  UWItem.h
  3. //  URLwell
  4. //
  5. //  Created by endian on 10.2.05.
  6. //  Copyright (c) 2005 Enigmarelle Development. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11.  
  12. @interface UWItem : NSObject
  13. {
  14.     NSString *myTitle;
  15.     NSURL *myURL;
  16.     NSCalendarDate *addedDate;
  17.     NSCalendarDate *lastViewedDate;
  18.     BOOL isViewed;
  19. }
  20.  
  21. +(UWItem *)itemWithURL:(NSURL *)aURL title:(NSString*)aTitle;
  22.  
  23. -(void)updateLastViewed;
  24.  
  25. @end
  26.